home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / bbs / Hydra11s.lha / HBBS / Source / Node / Node_Main_protos.h < prev    next >
Text File  |  1996-06-25  |  2KB  |  83 lines

  1. /* Prototypes for functions defined in
  2. Node_Main.c
  3.  */
  4.  
  5. int CXBRK(void);
  6.  
  7. int _CXBRK(void);
  8.  
  9. void chkabort(void);
  10.  
  11. void ClearNodeData(struct NodeSettingsData * );
  12.  
  13. void SetNodeSettingsDefaults(struct NodeSettingsData * );
  14.  
  15. void CopyNodeSettings(struct NodeSettingsData * , struct NodeSettingsData * );
  16.  
  17. void FreeNodeSettingsData(struct NodeSettingsData * );
  18.  
  19. unsigned long LoadNodeSettingsData(unsigned long , struct NodeSettingsData * );
  20.  
  21. void WatchScreenToFront(void);
  22.  
  23. short PickConScreen(void);
  24.  
  25. short CreateNodePorts(void);
  26.  
  27. void CloseNodePorts(void);
  28.  
  29. void UpdateNodeWndGadgets(void);
  30.  
  31. void OpenNodeWin(struct Screen * );
  32.  
  33. void CloseNodeWin(void);
  34.  
  35. void UpdateInfoWin(void);
  36.  
  37. void ProcessWindowInfoWin(long , unsigned short , void * );
  38.  
  39. void UpdateSettingsWindow(void);
  40.  
  41. void LoadWindowSettings(void);
  42.  
  43. void SaveWindowSettings(void);
  44.  
  45. void ProcessWindowSettingsWin(long , unsigned short , void * );
  46.  
  47. void ProcessWindowNodeWnd(long , unsigned short , void * );
  48.  
  49. void ProcessConWindow(long , unsigned short , void * );
  50.  
  51. void SendStatus(unsigned long );
  52.  
  53. void SendRequest(unsigned long );
  54.  
  55. void ClearDeviceData(struct DeviceData * );
  56.  
  57. void SetDeviceDataDefaults(struct DeviceData * );
  58.  
  59. void FreeDeviceData(struct DeviceData * );
  60.  
  61. unsigned long LoadDeviceData(unsigned long , struct DeviceData * );
  62.  
  63. unsigned long GetBBSGlobal(void);
  64.  
  65. unsigned long InitNode(void);
  66.  
  67. void FreeNode(void);
  68.  
  69. void HandleAsk(struct AskMsg * );
  70.  
  71. void HandleStatus(struct StatusMsg * );
  72.  
  73. void HandleDoorActivityMsg(struct DoorActivityMsg * );
  74.  
  75. void HandleMsg(void);
  76.  
  77. int OpenTheDiskFonts(void);
  78.  
  79. void NodeMain(void);
  80.  
  81. int main(int , char ** );
  82.  
  83.